09 Publications

The publications section type displays a list of papers. Each paper entry goes inside the papers[] array.

Each paper must have a unique entry. You can't add the same paper twice.

Wrong — duplicate paper entries:

{
    "label": "PUBLICATIONS",
    "papers": [
        { "title": "Paper A", "authors": "Author", "url": "#", "meta": "Journal" },
        { "title": "Paper A", "authors": "Author", "url": "#", "meta": "Journal" }
    ]
}

Right — unique papers:

{
    "label": "PUBLICATIONS",
    "papers": [
        { "title": "Paper A", "authors": "Author", "url": "#", "meta": "Journal, 2024" },
        { "title": "Paper B", "authors": "Author", "url": "#", "meta": "Journal, 2023" }
    ]
}

Publications is a dedicated section type with "type": "publications". You can only have one papers[] array per section.

Publications Fields

These are the available options for each paper:

FieldDescription
titlePaper title
authorsAuthor list
urlLink URL for the title
metaJournal name, year, venue (italic)
textOptional abstract or description
imageOptional thumbnail image
image_altAlt text for the image
captionText below the image
creditTop-right credit label on image
w, hImage dimensions
numberedSet true to prefix papers with numbers

Publications Use Cases

Numbered option

Set numbered to true at the section level to prefix each paper with a number.

{
    "label": "PUBLICATIONS",
    "numbered": true,
    "papers": [
        { "title": "Paper Title", "authors": "Author", "url": "#", "meta": "Journal" }
    ]
}

Paper with title, authors and venue name

Paper Title
Author, A. — Journal, Year

{
    "title": "Paper Title",
    "authors": "Author, A.",
    "url": "#",
    "meta": "Journal, Year"
}

Paper with title, authors, venue name and description

Paper Title
Author, B. — Journal, Year

This paper explores the topic in detail.

{
    "title": "Paper Title",
    "authors": "Author, B.",
    "url": "#",
    "meta": "Journal, Year",
    "text": "Description here."
}

Paper with title, authors, venue name, description and image

Paper Title
Author, C. — Journal, Year

Description text.

preview
{
    "title": "Paper Title",
    "authors": "Author, C.",
    "url": "#",
    "meta": "Journal, Year",
    "text": "Description text.",
    "image": "path/to/image.jpg",
    "w": 400,
    "h": 300
}

Paper with title, authors, venue name, description, image and credits

Paper Title
Author, D. — Journal, Year

Description text.

Credit Name
preview
{
    "title": "Paper Title",
    "authors": "Author, D.",
    "url": "#",
    "meta": "Journal, Year",
    "text": "Description text.",
    "image": "path/to/image.jpg",
    "credit": "Credit Name",
    "w": 400,
    "h": 300
}

Paper with title, authors, venue name, description, image, credits and caption

Paper Title
Author, E. — Journal, Year

Description text.

Credit Name
preview

Caption text below image.

{
    "title": "Paper Title",
    "authors": "Author, E.",
    "url": "#",
    "meta": "Journal, Year",
    "text": "Description text.",
    "image": "path/to/image.jpg",
    "credit": "Credit Name",
    "caption": "Caption text below image.",
    "w": 400,
    "h": 300
}

Paper with title, authors, venue name and image

Paper Title
Author, F. — Journal, Year

preview
{
    "title": "Paper Title",
    "authors": "Author, F.",
    "url": "#",
    "meta": "Journal, Year",
    "image": "path/to/image.jpg",
    "w": 400,
    "h": 300
}